Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / clients / {id} / scope-mappings / realm / available

Get list of realm-level roles that are available to attach to this client's scope.

Path parameters:
realm - realm name (not id!)
id - id of client (not client-id)

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/clients/{id}/scope-mappings/realm/availableGet list of realm-level roles that are available to attach to this client's scope.

Method Detail

GET /admin/realms/{realm}/clients/{id}/scope-mappings/realm/available

Get list of realm-level roles that are available to attach to this client's scope.

HTTP Example:
GET /admin/realms/{realm}/clients/{id}/scope-mappings/realm/available
API Example:

ScopeMappedResource.getAvailableRealmScopeMappings({'realm': /* name realm name (not id!) */,
  'id': /* id id of client (not client-id) */});

Output:
List<RoleRepresentation> -
Produces:
application/json

Keycloak REST Services 1.5.0-Final